home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.5 Applications 2002 November / SGI IRIX 6.5 Applications 2002 November.iso / dist / impr_base.idb / usr / impressario / gifts / models / lpr2lp.z / lpr2lp
Text File  |  1998-05-04  |  309b  |  15 lines

  1. #!/bin/sh
  2. #
  3. # quick script to redirect the output of lpr to the default printer
  4. # under the local lp spooler.
  5. # to change the destination of the lp, add -d<printername> to the end
  6. #
  7. # use this script with a printcap entry of the form:
  8. #
  9. # fake|fake printer:\
  10. #    :lp=/dev/null:of=/etc/lpr2lp:
  11. #
  12.     
  13. cat - | lp
  14.